home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / minizip / ioapi.h < prev    next >
C/C++ Source or Header  |  2005-09-24  |  3KB  |  79 lines

  1. /* ioapi.h -- IO base function header for compress/uncompress .zip
  2.    files using zlib + zip or unzip API
  3.  
  4.    Version 1.00, September 10th, 2003
  5.  
  6.    Copyright (C) 1998-2003 Gilles Vollant
  7. */
  8.  
  9. #ifndef _ZLIBIOAPI_H
  10. #define _ZLIBIOAPI_H
  11.  
  12.  
  13. #define ZLIB_FILEFUNC_SEEK_CUR (1)
  14. #define ZLIB_FILEFUNC_SEEK_END (2)
  15. #define ZLIB_FILEFUNC_SEEK_SET (0)
  16.  
  17. #define ZLIB_FILEFUNC_MODE_READ      (1)
  18. #define ZLIB_FILEFUNC_MODE_WRITE     (2)
  19. #define ZLIB_FILEFUNC_MODE_READWRITEFILTER (3)
  20.  
  21. #define ZLIB_FILEFUNC_MODE_EXISTING (4)
  22. #define ZLIB_FILEFUNC_MODE_CREATE   (8)
  23.  
  24.  
  25. #ifndef ZCALLBACK
  26.  
  27. #if (defined(WIN32) || defined (WINDOWS) || defined (_WINDOWS)) && defined(CALLBACK) && defined (USEWINDOWS_CALLBACK)
  28. #define ZCALLBACK CALLBACK
  29. #else
  30. #define ZCALLBACK
  31. #endif
  32. #endif
  33.  
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37.  
  38. typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
  39. typedef uLong  (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
  40. typedef uLong  (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
  41. typedef long   (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
  42. typedef long   (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
  43. typedef int    (ZCALLBACK *flush_file_func) OF((voidpf opaque, voidpf stream));
  44. typedef int    (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
  45. typedef int    (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
  46.  
  47. typedef struct zlib_filefunc_def_s
  48. {
  49.     open_file_func      zopen_file;
  50.     read_file_func      zread_file;
  51.     write_file_func     zwrite_file;
  52.     tell_file_func      ztell_file;
  53.     seek_file_func      zseek_file;
  54.     flush_file_func     zflush_file;
  55.     close_file_func     zclose_file;
  56.     testerror_file_func zerror_file;
  57.     voidpf              opaque;
  58. } zlib_filefunc_def;
  59.  
  60.  
  61.  
  62. void fill_fopen_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def));
  63.  
  64. #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size))
  65. #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size))
  66. #define ZTELL(filefunc,filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream))
  67. #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode))
  68. #define ZFLUSH(filefunc,filestream) ((*((filefunc).zflush_file))((filefunc).opaque,filestream))
  69. #define ZCLOSE(filefunc,filestream) ((*((filefunc).zclose_file))((filefunc).opaque,filestream))
  70. #define ZERROR(filefunc,filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream))
  71.  
  72.  
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76.  
  77. #endif
  78.  
  79.